home *** CD-ROM | disk | FTP | other *** search
/ SGI Freeware 1999 August / SGI Freeware 1999 August.iso / dist / fw_libxml.idb / usr / freeware / include / gnome-xml / debugXML.h.z / debugXML.h
Encoding:
C/C++ Source or Header  |  1999-07-16  |  687 b   |  19 lines

  1. /*
  2.  * debugXML.h : Interfaces to a set of routines used for debugging the tree
  3.  *              produced by the XML parser.
  4.  *
  5.  * Daniel Veillard <Daniel.Veillard@w3.org>
  6.  */
  7.  
  8. #ifndef __DEBUG_XML__
  9. #define __DEBUG_XML__
  10. #include "tree.h"
  11.  
  12. extern void xmlDebugDumpString(FILE *output, const CHAR *str);
  13. extern void xmlDebugDumpAttr(FILE *output, xmlAttrPtr attr, int depth);
  14. extern void xmlDebugDumpAttrList(FILE *output, xmlAttrPtr attr, int depth);
  15. extern void xmlDebugDumpNode(FILE *output, xmlNodePtr node, int depth);
  16. extern void xmlDebugDumpNodeList(FILE *output, xmlNodePtr node, int depth);
  17. extern void xmlDebugDumpDocument(FILE *output, xmlDocPtr doc);
  18. #endif /* __DEBUG_XML__ */
  19.